home *** CD-ROM | disk | FTP | other *** search
- *** 1.1 1992/03/22 21:15:45
- --- PatchLev.h 1992/11/08 00:54:57
- ***************
- *** 1,5 ****
-
- ! #define PatchLevel "2"
-
- /*
- * the Patch Level above is to identify the version
- --- 1,5 ----
-
- ! #define PatchLevel "8"
-
- /*
- * the Patch Level above is to identify the version
- *** 1.1 1992/03/22 21:15:45
- --- expected.out 1992/11/08 00:54:57
- ***************
- *** 127,133 ****
- five
- words
- z = join(w, nw, /); z =This/string/has/five/words
- ! enter a word:
- tinteger
- one = 1
- one + 1 = 2
- --- 127,135 ----
- five
- words
- z = join(w, nw, /); z =This/string/has/five/words
- ! enter a word:word =abcdefghijklmnopqrstuvwxyz length = 26
- !
- ! End of test
- tinteger
- one = 1
- one + 1 = 2
- ***************
- *** 444,450 ****
- five samples:
- 10.4918 0.295112 0.184577 2.14799 0.10053
- Statistics for 100 samples:
- ! samples: 100 min: 0.000236481 max: 15.4934
- mean: 1.96369 stdDev: 2.97642 var: 8.85906 confidence(95): 0.59072
- SampleHistogram for 100 Normal samples
- < -4 : 0
- --- 446,452 ----
- five samples:
- 10.4918 0.295112 0.184577 2.14799 0.10053
- Statistics for 100 samples:
- ! samples: 100 min: 2.36481e-04 max: 15.4934
- mean: 1.96369 stdDev: 2.97642 var: 8.85906 confidence(95): 0.59072
- SampleHistogram for 100 Normal samples
- < -4 : 0
- ***************
- *** 507,513 ****
- len = 33
- siz = 3
- ref = 1
- ! man = ccccccc8000
- val = 0.1
-
- Fix: range errors warned
- --- 509,515 ----
- len = 33
- siz = 3
- ref = 1
- ! man = ccccccc8000
- val = 0.1
-
- Fix: range errors warned
- *** 1.1 1992/03/22 21:15:45
- --- makefile.32 1992/11/08 00:54:58
- ***************
- *** 6,12 ****
- AS= $(CC)
-
- # common subset of options; no int size or omit-frame-pointer:
- ! COMMONOPT = -O
- COMMONFLAGS =
- COMMONDEFINES = -DNO_LIBGXX_MALLOC
-
- --- 6,12 ----
- AS= $(CC)
-
- # common subset of options; no int size or omit-frame-pointer:
- ! COMMONOPT = -O2 -fstrength-reduce
- COMMONFLAGS =
- COMMONDEFINES = -DNO_LIBGXX_MALLOC
-
- ***************
- *** 14,20 ****
- -DNDEBUG $(XFLAGS)
-
- GXXOPTS= $(COMMONOPT) $(COMMONFLAGS) $(COMMONDEFINES) \
- ! -felide-constructors -fsave-memoized $(XXFLAGS)
-
- # Base options CC; includes int size but not omit-frame-pointer
- CFFLAGS = $(COPTS)
- --- 14,20 ----
- -DNDEBUG $(XFLAGS)
-
- GXXOPTS= $(COMMONOPT) $(COMMONFLAGS) $(COMMONDEFINES) \
- ! -felide-constructors $(XXFLAGS)
-
- # Base options CC; includes int size but not omit-frame-pointer
- CFFLAGS = $(COPTS)
- ***************
- *** 21,28 ****
- GXXFFLAGS = $(GXXOPTS)
-
- # normal CFLAGS including int size and omit-frame-pointer
- ! CFLAGS= $(CFFLAGS)
- ! GXXFLAGS = $(GXXFFLAGS)
-
- # cflags for stuff that needs to be compiled with 32 bit ints
- CLFLAGS= $(CFLAGS)
- --- 21,28 ----
- GXXFFLAGS = $(GXXOPTS)
-
- # normal CFLAGS including int size and omit-frame-pointer
- ! CFLAGS= $(CFFLAGS) -fomit-frame-pointer
- ! GXXFLAGS = $(GXXFFLAGS) -fomit-frame-pointer
-
- # cflags for stuff that needs to be compiled with 32 bit ints
- CLFLAGS= $(CFLAGS)
- *** 1.1 1992/03/22 21:15:45
- --- trationa.cc 1992/11/08 00:55:02
- ***************
- *** 102,108 ****
- cout << "approxpi = " << approxpi << "\n";
- cout << "double(approxpi) = " << double(approxpi) << "\n";
-
- ! Rational rpi = Rational(PI);
- cout << "rpi = Rational(PI) = " << rpi << "\n";
- assert(rpi.OK());
- cout << "double(rpi) = " << double(rpi) << "\n";
- --- 102,108 ----
- cout << "approxpi = " << approxpi << "\n";
- cout << "double(approxpi) = " << double(approxpi) << "\n";
-
- ! Rational rpi = Rational(M_PI);
- cout << "rpi = Rational(PI) = " << rpi << "\n";
- assert(rpi.OK());
- cout << "double(rpi) = " << double(rpi) << "\n";
- *** 1.1 1992/03/22 21:15:45
- --- tstring.cc 1992/11/08 00:55:03
- ***************
- *** 8,13 ****
- --- 8,15 ----
- #include <std.h>
- #include <assert.h>
-
- + extern "C" long _stksize = 16*1024;
- +
- // can't nicely echo assertions because they contain quotes
-
- #define tassert(ex) {if (!(ex)) \
-